home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / WINPROGS / WINSRC20.ZIP / LOADFILE.C < prev    next >
Text File  |  1990-09-17  |  17KB  |  567 lines

  1. /*
  2.     loadfile.c - load an existing fractal image, control level
  3.     This module is linked as an overlay, use ENTER_OVLY and EXIT_OVLY.
  4. */
  5.  
  6. #include <stdlib.h>
  7. #include <stdio.h>
  8. #include <string.h>
  9. #include "fractint.h"
  10. #include "fractype.h"
  11. #include "targa_lc.h"
  12.  
  13. /* routines in this module    */
  14.  
  15. void loadfile_overlay(void);
  16. int  read_overlay(void);
  17.  
  18. static int  find_fractal_info(char *,struct fractal_info *);
  19. static void load_ext_blk(char far *loadptr,int loadlen);
  20. static void skip_ext_blk(int *,int *);
  21. static void backwardscompat();
  22.  
  23. int filetype;
  24.  
  25. extern int    showfile;         /* has file been displayed yet? */
  26. extern char   readname[];        /* name of fractal input file */
  27. extern char   far *resume_info;     /* pointer to resume info if alloc'd */
  28. extern int    resume_len;        /* length of resume info */
  29. extern int    adapter;
  30. extern int    calc_status;
  31. extern int    initmode;         /* initial video mode        */
  32. extern long   calctime;
  33. extern int    initbatch;        /* 1 if batch run (no kbd)  */
  34. extern int    maxit;
  35. extern int    initincr;         /* maxiter incrmnt        */
  36. extern char   usr_stdcalcmode;        /* pass mode            */
  37. extern int    fractype;         /* fractal type         */
  38. extern double xxmin,xxmax;        /* corner values        */
  39. extern double yymin,yymax;        /* corner values        */
  40. extern double xx3rd,yy3rd;        /* corner values        */
  41. extern double param[4];         /* parameters            */
  42. extern int    inside;            /* inside color: 1=blue     */
  43. extern int    outside;            /* outside color, if set    */
  44. extern int    finattract;        /* finite attractor option  */
  45. extern int    forcesymmetry;
  46. extern int    LogFlag;            /* non-zero if logarithmic palettes */
  47. extern int    rflag, rseed;
  48. extern int    usr_periodicitycheck;
  49. extern char   useinitorbit;
  50. extern struct complex initorbit;
  51. extern int    potflag;            /* continuous potential flag */
  52. extern int    pot16bit;
  53. extern double potparam[3];        /* three potential parameters*/
  54. extern double inversion[];
  55. extern int    decomp[];
  56. extern int    usr_distest;        /* non-zero if distance estimator   */
  57. extern int    init3d[20];        /* '3d=nn/nn/nn/...' values */
  58. extern char   usr_floatflag;        /* floating-point fractals? */
  59. extern int    biomorph;
  60. extern char   FormName[];
  61. extern int    bailout;            /* user input bailout value */
  62. extern int    previewfactor;
  63. extern int    xtrans;
  64. extern int    ytrans;
  65. extern int    red_crop_left;
  66. extern int    red_crop_right;
  67. extern int    blue_crop_left;
  68. extern int    blue_crop_right;
  69. extern int    red_bright;
  70. extern int    blue_bright;
  71. extern int    xadjust;
  72. extern int    eyeseparation;
  73. extern int    glassestype;
  74. extern int    display3d;        /* 3D display flag: 0 = OFF */
  75. extern int    overlay3d;        /* 3D overlay flag: 0 = OFF */
  76. extern int    viewwindow;        /* 0 for full screen, 1 for window */
  77. extern float  viewreduction;        /* window auto-sizing */
  78. extern float  finalaspectratio;     /* for view shape and rotation */
  79. extern int    viewxdots,viewydots;    /* explicit view sizing */
  80. extern int    save_system,save_release;
  81.  
  82. static FILE *fp;
  83.  
  84. int fileydots, filexdots, filecolors;
  85. float fileaspectratio;
  86.  
  87. int skipxdots,skipydots;    /* for decoder, when reducing image */
  88.  
  89.  
  90. void loadfile_overlay() { }    /* for restore_active_ovly */
  91.  
  92.  
  93. int read_overlay()    /* read overlay/3D files, if reqr'd */
  94. {
  95.    struct fractal_info read_info;
  96.    char oldfloatflag;
  97.    char msg[110];
  98.  
  99.    ENTER_OVLY(OVLY_LOADFILE);
  100.  
  101.    showfile = 1;        /* for any abort exit, pretend done */
  102.    initmode = -1;        /* no viewing mode set yet */
  103.    oldfloatflag = usr_floatflag;
  104.  
  105.    if(find_fractal_info(readname,&read_info)) { /* didn't find a useable file */
  106.       sprintf(msg,"Sorry, %s isn't a file I can decode.",readname);
  107.       stopmsg(1,msg);
  108.       EXIT_OVLY;
  109.       return(-1);
  110.       }
  111.  
  112.    maxit    = read_info.iterations;
  113.    fractype    = read_info.fractal_type;
  114.    xxmin    = read_info.xmin;
  115.    xxmax    = read_info.xmax;
  116.    yymin    = read_info.ymin;
  117.    yymax    = read_info.ymax;
  118.    param[0]    = read_info.creal;
  119.    param[1]    = read_info.cimag;
  120.    save_release = 1100; /* unless we find out better later on */
  121.  
  122.    if(read_info.version > 0) {
  123.       param[2]        = read_info.parm3;
  124.       param[3]        = read_info.parm4;
  125.       potparam[0]   = read_info.potential[0];
  126.       potparam[1]   = read_info.potential[1];
  127.       potparam[2]   = read_info.potential[2];
  128.       potflag        = (potparam[0] != 0.0);
  129.       rflag        = read_info.rflag;
  130.       rseed        = read_info.rseed;
  131.       inside        = read_info.inside;
  132.       LogFlag        = read_info.logmap;
  133.       inversion[0]  = read_info.invert[0];
  134.       inversion[1]  = read_info.invert[1];
  135.       inversion[2]  = read_info.invert[2];
  136.       decomp[0]     = read_info.decomp[0];
  137.       decomp[1]     = read_info.decomp[1];
  138.       biomorph        = read_info.biomorph;
  139.       forcesymmetry = read_info.symmetry;
  140.       }
  141.  
  142.    if(read_info.version > 1) {
  143.       save_release  = 1200;
  144.       if (!display3d) {
  145.      int i;
  146.      for (i = 0; i < 16; i++)
  147.         init3d[i] = read_info.init3d[i];
  148.      previewfactor     = read_info.previewfactor;
  149.      xtrans      = read_info.xtrans;
  150.      ytrans      = read_info.ytrans;
  151.      red_crop_left     = read_info.red_crop_left;
  152.      red_crop_right  = read_info.red_crop_right;
  153.      blue_crop_left  = read_info.blue_crop_left;
  154.      blue_crop_right = read_info.blue_crop_right;
  155.      red_bright     = read_info.red_bright;
  156.      blue_bright     = read_info.blue_bright;
  157.      xadjust     = read_info.xadjust;
  158.      eyeseparation     = read_info.eyeseparation;
  159.      glassestype     = read_info.glassestype;
  160.      }
  161.       }
  162.  
  163.    if(read_info.version > 2) {
  164.       save_release = 1300;
  165.       outside       = read_info.outside;
  166.       }
  167.  
  168.    calc_status = 0;      /* defaults if version < 4 */
  169.    xx3rd = xxmin;
  170.    yy3rd = yymin;
  171.    usr_distest = 0;
  172.    calctime = 0;
  173.    if(read_info.version > 3) {
  174.       save_release = 1400;
  175.       xx3rd      = read_info.x3rd;
  176.       yy3rd      = read_info.y3rd;
  177.       calc_status = read_info.calc_status;
  178.       usr_stdcalcmode = read_info.stdcalcmode;
  179.       usr_distest     = read_info.distest;
  180.       usr_floatflag   = read_info.floatflag;
  181.       bailout      = read_info.bailout;
  182.       calctime      = read_info.calctime;
  183.       trigndx[0]  = read_info.trigndx[0];
  184.       trigndx[1]  = read_info.trigndx[1];
  185.       trigndx[2]  = read_info.trigndx[2];
  186.       trigndx[3]  = read_info.trigndx[3];
  187.       finattract  = read_info.finattract;
  188.       initorbit.x = read_info.initorbit[0];
  189.       initorbit.y = read_info.initorbit[1];
  190.       useinitorbit = read_info.useinitorbit;
  191.       usr_periodicitycheck = read_info.periodicity;
  192.       }
  193.  
  194.    pot16bit = 0;
  195.    save_system = 0;
  196.    if(read_info.version > 4) {
  197.       pot16bit       = read_info.pot16bit;
  198.       if (pot16bit)
  199.      filexdots >>= 1;
  200.       fileaspectratio = read_info.faspectratio;
  201.       if (fileaspectratio < 0.01)    /* fix files produced in early v14.1 */
  202.      fileaspectratio = SCREENASPECT;
  203.       save_system  = read_info.system;
  204.       save_release = read_info.release; /* from fmt 5 on we know real number */
  205.       if (read_info.version == 5    /* except a few early fmt 5 cases: */
  206.       && (save_release <= 0 || save_release >= 2000)) {
  207.      save_release = 1410;
  208.      save_system = 0;
  209.      }
  210.       }
  211.  
  212.    if(read_info.version < 4) { /* pre-version 14.0? */
  213.       backwardscompat(&read_info); /* translate obsolete types */
  214.       if(LogFlag)
  215.      LogFlag = 2;
  216.       usr_floatflag = (fractalspecific[fractype].isinteger) ? 0 : 1;
  217.       }
  218.  
  219.    if(read_info.version < 5) { /* pre-version 15.0? */
  220.       if(LogFlag == 2) /* logmap=old changed again in format 5! */
  221.      LogFlag = -1;
  222.       }
  223.  
  224.    fractalspecific[fractype].paramvalue[0] = param[0];
  225.    fractalspecific[fractype].paramvalue[1] = param[1];
  226.    fractalspecific[fractype].paramvalue[2] = param[2];
  227.    fractalspecific[fractype].paramvalue[3] = param[3];
  228.    set_trig_pointers(-1);
  229.  
  230.    if (display3d)            /* PB - a klooge till the meaning of */
  231.       usr_floatflag = oldfloatflag; /*    floatflag in line3d is clarified */
  232.  
  233.    if (overlay3d)
  234.       initmode = adapter;       /* use previous adapter mode for overlays */
  235.    else
  236.       if (get_video_mode(&read_info)) {
  237.      EXIT_OVLY;
  238.      initmode = -1;
  239.      return(-1);
  240.